From 5b6313f16f508882a0ea67716b7dbaa1c6967f04 Mon Sep 17 00:00:00 2001 From: dujinkim Date: Mon, 30 Jun 2025 08:28:13 +0000 Subject: (대표님) 20250630 16시 - 유저 도메인별 라우터 분리와 보안성검토 대응 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../(engineering)/evaluation-check-list/page.tsx | 81 ++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 app/[lng]/engineering/(engineering)/evaluation-check-list/page.tsx (limited to 'app/[lng]/engineering/(engineering)/evaluation-check-list/page.tsx') diff --git a/app/[lng]/engineering/(engineering)/evaluation-check-list/page.tsx b/app/[lng]/engineering/(engineering)/evaluation-check-list/page.tsx new file mode 100644 index 00000000..a660c492 --- /dev/null +++ b/app/[lng]/engineering/(engineering)/evaluation-check-list/page.tsx @@ -0,0 +1,81 @@ +/* IMPORT */ +import { DataTableSkeleton } from '@/components/data-table/data-table-skeleton'; +import { getRegEvalCriteria } from '@/lib/evaluation-criteria/service'; +import { getValidFilters } from '@/lib/data-table'; +import RegEvalCriteriaTable from '@/lib/evaluation-criteria/table/reg-eval-criteria-table'; +import { searchParamsCache } from '@/lib/evaluation-criteria/validations'; +import { Shell } from '@/components/shell'; +import { Skeleton } from '@/components/ui/skeleton'; +import { Suspense } from 'react'; +import { type SearchParams } from '@/types/table'; + +// ---------------------------------------------------------------------------------------------------- + +/* TYPES */ +interface EvaluationCriteriaPageProps { + searchParams: Promise +} + +// ---------------------------------------------------------------------------------------------------- + +/* REGULAR EVALUATION CRITERIA PAGE */ +async function EvaluationCriteriaPage(props: EvaluationCriteriaPageProps) { + const searchParams = await props.searchParams; + const search = searchParamsCache.parse(searchParams); + const validFilters = getValidFilters(search.filters); + const promises = Promise.all([ + getRegEvalCriteria({ + ...search, + filters: validFilters, + }), + ]); + + return ( + +
+
+
+

+ 협력업체 평가기준표 +

+

+ 협력업체 평가에 사용되는 평가기준표를 관리{" "} + {/* + + 버튼 + + 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다. */} +

+
+
+
+ + }> + {/* */} + + + } + > + + +
+ ) +} + +// ---------------------------------------------------------------------------------------------------- + +/* EXPORT */ +export default EvaluationCriteriaPage; \ No newline at end of file -- cgit v1.2.3